github.com/klauspost/compress/zstd.sequenceDecs.out (field)
46 uses
github.com/klauspost/compress/zstd (current package)
blockdec.go#L491: before := len(hist.decoders.out)
blockdec.go#L498: hist.decoders.maxSyncLen -= uint64(len(hist.decoders.out))
blockdec.go#L500: b.dst = hist.decoders.out
blockdec.go#L682: hist.decoders.out = b.dst[:0]
blockdec.go#L695: b.dst = hist.decoders.out
blockdec.go#L709: hist.decoders.out, hist.decoders.literals = nil, nil
seqdec.go#L70: out []byte
seqdec.go#L94: s.out = out
seqdec.go#L125: if len(s.out)+s.seqSize > cap(s.out) {
seqdec.go#L126: addBytes := s.seqSize + len(s.out)
seqdec.go#L127: s.out = append(s.out, make([]byte, addBytes)...)
seqdec.go#L128: s.out = s.out[:len(s.out)-addBytes]
seqdec.go#L135: var t = len(s.out)
seqdec.go#L136: out := s.out[:t+s.seqSize]
seqdec.go#L215: s.out = out
seqdec.go#L229: startSize := len(s.out)
seqdec.go#L233: out := s.out
seqdec.go#L432: s.out = append(out, s.literals...)
seqdec_asm.go#L85: if s.maxSyncLen == 0 && cap(s.out)-len(s.out) < maxCompressedBlockSize {
seqdec_asm.go#L106: out: s.out,
seqdec_asm.go#L107: outPosition: len(s.out),
seqdec_asm.go#L114: startSize := len(s.out)
seqdec_asm.go#L141: println("msl:", s.maxSyncLen, "cap", cap(s.out), "bef:", startSize, "sz:", size-startSize, "mbs:", maxBlockSize, "outsz:", cap(s.out)-startSize)
seqdec_asm.go#L161: s.out = s.out[:t]
seqdec_asm.go#L164: s.out = append(s.out, s.literals...)
seqdec_asm.go#L167: if t != len(s.out) {
seqdec_asm.go#L168: panic(fmt.Errorf("length mismatch, want %d, got %d", len(s.out), t))
seqdec_asm.go#L243: if len(s.out)+s.seqSize+compressedBlockOverAlloc > cap(s.out) {
seqdec_asm.go#L244: addBytes := s.seqSize + len(s.out) + compressedBlockOverAlloc
seqdec_asm.go#L245: s.out = append(s.out, make([]byte, addBytes)...)
seqdec_asm.go#L246: s.out = s.out[:len(s.out)-addBytes]
seqdec_asm.go#L253: var t = len(s.out)
seqdec_asm.go#L254: out := s.out[:t+s.seqSize]
seqdec_asm.go#L286: s.out = out
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |